home *** CD-ROM | disk | FTP | other *** search
/ PC-SIG: World of Games / PC-SIG World of Games (CDRM1080710) (1993).iso / 1073 / HELLO.BAT < prev    next >
DOS Batch File  |  1988-01-22  |  896b  |  30 lines

  1. ECHO OFF
  2. CLS
  3. ECHO                       WELCOME TO CONRAD BUTTON'S GAME SERIES
  4. ECHO.
  5. ECHO    HOW TO START RED PLANET
  6. ECHO.
  7. ECHO        1. Be sure the game disk is in drive A
  8. ECHO        2. Type A: and press Enter
  9. ECHO        3. Type REDPLAN and press Enter
  10. ECHO.
  11. ECHO      If you are using a graphics monitor that only displays
  12. ECHO      one color you should use the M parameter when starting
  13. ECHO      the games  (i.e.  REDPLAN M).
  14. ECHO.
  15. ECHO NOTE:  To print out the instructions for the games on your
  16. ECHO        printer restart this file by typing HELLO /P
  17. IF .%1 == ./P GOTO PRINT
  18. IF .%1 == ./p GOTO PRINT
  19. GOTO END
  20. :PRINT
  21. ECHO.
  22. ECHO BE SURE YOUR PRINTER IS ON!
  23. PAUSE
  24. ECHO.
  25. ECHO Printing Document
  26. TYPE A:HELLO.TXT >PRN
  27. :END
  28. ECHO.
  29. PAUSE
  30.